找传奇、传世资源到传世资源站!
PHP网站 正文

PHPRPG游戏引擎源码

  • 资源分类:PHP网站
  • 发 布 人:房东的猫
  • 文件大小:未知
  • 文件格式:.zip
  • 浏览次数:5
  • 下载次数: 0
  • 发布时间:6月7日

  • 标签: hpphpPrrp游戏
8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】PHPRPG游戏引擎源码
【相关图片】from clipboard

【源码结构】

├── phpRPG-0.8.0
│   ├── HISTORY
│   ├── INSTALL
│   ├── LICENSE
│   ├── README
│   ├── TODO
│   ├── bin
│   │   ├── admin
│   │   │   ├── character
│   │   │   │   ├── delete-attribute.js.php
│   │   │   │   ├── delete-character.js.php
│   │   │   │   ├── gen-attrib-list.js.php
│   │   │   │   ├── load-character.js.php
│   │   │   │   ├── load-image-set.js.php
│   │   │   │   ├── save-character.js.php
│   │   │   │   └── swap-character-image.js.php
│   │   │   ├── item
│   │   │   │   ├── delete-attribute.js.php
│   │   │   │   ├── delete-event.js.php
│   │   │   │   ├── delete-items.js.php
│   │   │   │   ├── gen-attrib-list.js.php
│   │   │   │   ├── gen-event-list.js.php
│   │   │   │   ├── gen-icon-images.js.php
│   │   │   │   ├── gen-merg-images.js.php
│   │   │   │   ├── load-image-set.js.php
│   │   │   │   ├── load-item.js.php
│   │   │   │   ├── save-event.js.php
│   │   │   │   ├── save-item.js.php
│   │   │   │   └── swap-item-image.js.php
│   │   │   ├── map
│   │   │   │   ├── admin-load-map.js.php
│   │   │   │   ├── admin-move.js.php
│   │   │   │   ├── admin-refresh-locs.js.php
│   │   │   │   ├── define-location.js.php
│   │   │   │   ├── gen-map-list.js.php
│   │   │   │   ├── load-link.js.php
│   │   │   │   ├── load-map.js.php
│   │   │   │   ├── load-terrain.js.php
│   │   │   │   ├── loc-pick-load-map.js.php
│   │   │   │   ├── loc-pick-move.js.php
│   │   │   │   ├── loc-pick-refresh-locs.js.php
│   │   │   │   ├── new-map.js.php
│   │   │   │   ├── refresh-locs.js.php
│   │   │   │   ├── update-link.js.php
│   │   │   │   └── update-map.js.php
│   │   │   ├── script
│   │   │   │   ├── delete-script.js.php
│   │   │   │   ├── load-script.js.php
│   │   │   │   └── save-script.js.php
│   │   │   └── tile
│   │   │       ├── delete-attribute.js.php
│   │   │       ├── delete-tile.js.php
│   │   │       ├── gen-attrib-list.js.php
│   │   │       ├── gen-event-list.js.php
│   │   │       ├── gen-image-list.js.php
│   │   │       ├── gen-terrain-list.js.php
│   │   │       ├── load-image-set.js.php
│   │   │       ├── load-terrain.js.php
│   │   │       ├── load-tile.js.php
│   │   │       ├── new-tile.js.php
│   │   │       ├── save-event.js.php
│   │   │       ├── save-tile.js.php
│   │   │       └── swap-tile-image.js.php
│   │   ├── load-dropped-items.js.php
│   │   ├── load-equiped.js.php
│   │   ├── load-inventory.js.php
│   │   ├── load-overview.js.php
│   │   ├── load-players.js.php
│   │   ├── load-qstats.js.php
│   │   ├── load-stats.js.php
│   │   └── move.js.php
│   ├── characters.php
│   ├── create-character.php
│   ├── doc
│   │   ├── class.overlib_1.12.zip
│   │   ├── phprpg_db_character.txt
│   │   ├── phprpg_db_items.txt
│   │   ├── phprpg_db_maps.txt
│   │   ├── phprpg_design.txt
│   │   ├── phprpg_outline.txt
│   │   └── phprpg_standards.txt
│   ├── etc
│   │   ├── db.conf.php
│   │   ├── init.php
│   │   ├── local.conf.php
│   │   ├── map.conf.php
│   │   └── runtime.conf.php
│   ├── favicon.ico
│   ├── index.php
│   ├── items.php
│   ├── lib
│   │   ├── action.lib.php
│   │   ├── admin
│   │   │   ├── character
│   │   │   │   ├── attribute_editor.php
│   │   │   │   ├── character_editor.php
│   │   │   │   ├── colour_editor.php
│   │   │   │   ├── image_scan.php
│   │   │   │   ├── image_set_editor.php
│   │   │   │   ├── image_uploader.php
│   │   │   │   ├── search_results.php
│   │   │   │   └── user_editor.php
│   │   │   ├── item
│   │   │   │   ├── attribute_editor.php
│   │   │   │   ├── image_scan.php
│   │   │   │   ├── image_set_editor.php
│   │   │   │   ├── image_uploader.php
│   │   │   │   ├── item_editor.bak.php
│   │   │   │   ├── item_editor.php
│   │   │   │   ├── script_selector.php
│   │   │   │   └── search_results.php
│   │   │   ├── map
│   │   │   │   └── map_editor.php
│   │   │   ├── script
│   │   │   │   ├── script_editor.php
│   │   │   │   └── search_results.php
│   │   │   └── tile
│   │   │       ├── attribute_editor.php
│   │   │       ├── image_scan.php
│   │   │       ├── image_set_editor.php
│   │   │       ├── image_uploader.php
│   │   │       ├── script_selector.php
│   │   │       ├── terrain_editor.php
│   │   │       └── tile_editor.php
│   │   ├── attributes.lib.php
│   │   ├── auth.lib.php
│   │   ├── character.lib.php
│   │   ├── context.lib.php
│   │   ├── display.lib.php
│   │   ├── error.lib.php
│   │   ├── gettext.lib.php
│   │   ├── image.lib.php
│   │   ├── item.lib.php
│   │   ├── item_info.lib.php
│   │   ├── js
│   │   │   ├── character.js.php
│   │   │   ├── item.js.php
│   │   │   ├── loc-pick.js.php
│   │   │   ├── map.js.php
│   │   │   ├── md5.js
│   │   │   ├── overlib.js
│   │   │   ├── script.js.php
│   │   │   ├── scriptload.js
│   │   │   └── tile.js.php
│   │   ├── location.lib.php
│   │   ├── map.lib.php
│   │   ├── mysql.lib.php
│   │   ├── script.lib.php
│   │   ├── sprite.lib.php
│   │   ├── system.lib.php
│   │   ├── template.lib.php
│   │   ├── terrain.lib.php
│   │   ├── tile.lib.php
│   │   ├── time.lib.php
│   │   └── user.lib.php
│   ├── logout.php
│   ├── maps.php
│   ├── online.php
│   ├── options.php
│   ├── overview.php
│   ├── permfix.sh
│   ├── register.php
│   ├── scripts.php
│   ├── setup
│   │   ├── create.sql.php
│   │   ├── data.sql.php
│   │   ├── index.php
│   │   └── upgrade
│   │       └── 0.3.0-0.5.0.sql.php
│   ├── share
│   │   ├── images
│   │   │   ├── bar_blue.png
│   │   │   ├── bar_empty.png
│   │   │   ├── bar_green.png
│   │   │   ├── bar_orange.png
│   │   │   ├── bar_red.png
│   │   │   ├── bar_side.png
│   │   │   ├── bar_yellow.png
│   │   │   ├── default_background.png
│   │   │   ├── default_item_icon.png
│   │   │   ├── default_item_merg.png
│   │   │   ├── default_portrait.png
│   │   │   ├── default_sprite.png
│   │   │   ├── default_tile.png
│   │   │   ├── favicon.ico
│   │   │   ├── finger.png
│   │   │   ├── gold.png
│   │   │   ├── items
│   │   │   │   ├── icon
│   │   │   │   │   ├── cargo-pants.png
│   │   │   │   │   ├── plain-shirt.png
│   │   │   │   │   └── shoes.png
│   │   │   │   └── merg
│   │   │   │       ├── cargo-pants.png
│   │   │   │       ├── plain-shirt.png
│   │   │   │       └── shoes.png
│   │   │   ├── mask_error.png
│   │   │   ├── mask_success.png
│   │   │   ├── mask_trans.png
│   │   │   ├── mysql.png
│   │   │   ├── php.png
│   │   │   ├── phprpg.png
│   │   │   ├── sprites
│   │   │   │   ├── body
│   │   │   │   │   ├── human-001.png
│   │   │   │   │   └── human-002.png
│   │   │   │   ├── hair
│   │   │   │   │   ├── hair-000.png
│   │   │   │   │   ├── hair-001.png
│   │   │   │   │   └── hair-002.png
│   │   │   │   ├── portrait
│   │   │   │   ├── tail
│   │   │   │   └── wings
│   │   │   ├── tiles
│   │   │   │   ├── coast-e.png
│   │   │   │   ├── coast-n.png
│   │   │   │   ├── coast-ne.png
│   │   │   │   ├── coast-nw.png
│   │   │   │   ├── coast-s.png
│   │   │   │   ├── coast-se.png
│   │   │   │   ├── coast-sw.png
│   │   │   │   ├── coast-w.png
│   │   │   │   ├── flagstone.gif
│   │   │   │   ├── flagstone1.gif
│   │   │   │   ├── flagstone2.gif
│   │   │   │   ├── flagstone3.gif
│   │   │   │   ├── forest.png
│   │   │   │   ├── grass.png
│   │   │   │   ├── house-road-s.png
│   │   │   │   ├── mountain-bottom-left.png
│   │   │   │   ├── mountain-bottom-right.png
│   │   │   │   ├── mountain-centre-left-back.png
│   │   │   │   ├── mountain-centre-left.png
│   │   │   │   ├── mountain-centre-right-back.png
│   │   │   │   ├── mountain-centre-right.png
│   │   │   │   ├── mountain-left-back.png
│   │   │   │   ├── mountain-left.png
│   │   │   │   ├── mountain-right-back.png
│   │   │   │   ├── mountain-right.png
│   │   │   │   ├── mountain-top-left.png
│   │   │   │   ├── mountain-top-right.png
│   │   │   │   ├── road-cr.png
│   │   │   │   ├── road-ew.png
│   │   │   │   ├── road-fe.png
│   │   │   │   ├── road-fn.png
│   │   │   │   ├── road-fs.png
│   │   │   │   ├── road-fw.png
│   │   │   │   ├── road-ne.png
│   │   │   │   ├── road-ns.png
│   │   │   │   ├── road-nw.png
│   │   │   │   ├── road-se.png
│   │   │   │   ├── road-sw.png
│   │   │   │   ├── water.png
│   │   │   │   └── wood.png
│   │   │   ├── time_1_dawn.png
│   │   │   ├── time_1_day.png
│   │   │   ├── time_1_dusk.png
│   │   │   ├── time_1_night.png
│   │   │   ├── time_2_dawn.png
│   │   │   ├── time_2_day.png
│   │   │   ├── time_2_dusk.png
│   │   │   ├── time_2_night.png
│   │   │   ├── time_3_dawn.png
│   │   │   ├── time_3_day.png
│   │   │   ├── time_3_dusk.png
│   │   │   ├── time_3_night.png
│   │   │   ├── time_4_dawn.png
│   │   │   ├── time_4_day.png
│   │   │   ├── time_4_dusk.png
│   │   │   ├── time_4_night.png
│   │   │   └── x.png
│   │   ├── locale
│   │   │   └── fr_fr
│   │   │       └── LC_MESSAGES
│   │   │           ├── phprpg.mo
│   │   │           └── phprpg.po
│   │   ├── log
│   │   │   └── error.log
│   │   └── templates
│   │       └── phantasy
│   │           ├── admin_character_attrib.tpl
│   │           ├── admin_character_attrib_new.tpl
│   │           ├── admin_character_colour.tpl
│   │           ├── admin_character_image.tpl
│   │           ├── admin_character_portrait.tpl
│   │           ├── admin_character_search.tpl
│   │           ├── admin_character_user.tpl
│   │           ├── admin_characters.tpl
│   │           ├── admin_item.tpl
│   │           ├── admin_item_attrib.tpl
│   │           ├── admin_item_attrib_new.tpl
│   │           ├── admin_item_event.tpl
│   │           ├── admin_item_image.tpl
│   │           ├── admin_item_image_scan.tpl
│   │           ├── admin_item_image_sets.tpl
│   │           ├── admin_item_image_upload.tpl
│   │           ├── admin_item_search.tpl
│   │           ├── admin_items_script_select.tpl
│   │           ├── admin_maps.tpl
│   │           ├── admin_menu.tpl
│   │           ├── admin_script.tpl
│   │           ├── admin_script_search.tpl
│   │           ├── admin_tile_attrib.tpl
│   │           ├── admin_tile_attrib_new.tpl
│   │           ├── admin_tile_event.tpl
│   │           ├── admin_tiles.tpl
│   │           ├── admin_tiles_image_scan.tpl
│   │           ├── admin_tiles_image_sets.tpl
│   │           ├── admin_tiles_image_upload.tpl
│   │           ├── admin_tiles_images.tpl
│   │           ├── admin_tiles_script_select.tpl
│   │           ├── admin_tiles_terrain.tpl
│   │           ├── auth_character_select.tpl
│   │           ├── auth_login.tpl
│   │           ├── auth_logout.tpl
│   │           ├── context_inventory.tpl
│   │           ├── create_character.tpl
│   │           ├── create_character_customizations.tpl
│   │           ├── create_character_portrait.tpl
│   │           ├── create_character_stats.tpl
│   │           ├── display_border.tpl
│   │           ├── display_dropped_items.tpl
│   │           ├── display_inventory.tpl
│   │           ├── display_navigation.tpl
│   │           ├── display_overview.tpl
│   │           ├── display_player_equip.tpl
│   │           ├── display_player_qstats.tpl
│   │           ├── display_player_stats.tpl
│   │           ├── display_players.tpl
│   │           ├── display_time.tpl
│   │           ├── display_weather.tpl
│   │           ├── images
│   │           │   ├── box_bg.png
│   │           │   ├── equip_bg.png
│   │           │   ├── phantasy_bot.png
│   │           │   ├── phantasy_top.png
│   │           │   ├── quote_bt.png
│   │           │   ├── quote_dl.png
│   │           │   ├── quote_dr.png
│   │           │   ├── quote_lt.png
│   │           │   ├── quote_rt.png
│   │           │   ├── quote_tp.png
│   │           │   ├── quote_ul.png
│   │           │   ├── quote_ur.png
│   │           │   └── register.png
│   │           ├── includes
│   │           │   └── page.inc.php
│   │           ├── loc_pick.tpl
│   │           ├── master.tpl
│   │           ├── master_meta.tpl
│   │           ├── master_style.tpl
│   │           ├── popup.tpl
│   │           ├── register.tpl
│   │           ├── register_activation.tpl
│   │           ├── register_receipt.tpl
│   │           ├── user_local.tpl
│   │           ├── user_menu.tpl
│   │           ├── user_online.tpl
│   │           ├── user_options.tpl
│   │           ├── user_overview.tpl
│   │           ├── user_status.tpl
│   │           └── user_system.tpl
│   ├── status.php
│   ├── system.php
│   ├── tiles.php
│   └── tmp
│       └── readme.txt
└── 5t6t网_phpRPG-0.8.0.zip

41 directories, 327 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复